* {
    box-sizing: border-box;
}

body {
    background: #fff;
    font-family: 'Pompiere', cursive;
    position: relative;
    z-index: 100;
    /* overflow-y: hidden; */
    /* overflow-x: hidden; */
}


/* .row {
    margin-left: -15px;
    margin-right: -15px;
	} */


/************************* 
SIDEBAR__HEADER
**************************/

.nav__header {
    margin-left: 280px;
    padding: 10px;
    background: #1e6583;
}

.nav__searchbar {
    display: inline-block;
    width: 50%;
}

.nav__searchbar .fa {
    color: #828282;
}

input[type='text'] {
    background: #fff;
    border: none;
    font-size: 1rem;
    color: #fff;
    padding: 8px;
    font-weight: 100;
    width: 80%;
    transition: all .5s ease-in-out;
}


/* input {
    background: #fff;
    border: none;
    font-size: 1rem;
    color: #fff;
    padding: 8px;
    font-weight: 100;
    width: 80%;
    transition: all .5s ease-in-out;
} */


/* input[type='text']:hover {
    background: #828282;
} */

input:hover {
    background: #828282;
}

.nav__userfield {
    display: inline-block;
    float: right;
    padding: 5px;
}

.nav__userfield a {
    display: inline-block;
    padding-right: 20px;
    text-decoration: none;
    vertical-align: top;
    height: 30px;
}

.add {
    font-size: 1.25rem;
    font-weight: 500;
    padding-top: 5px;
}

.notification {
    position: relative;
    font-size: 20px;
    padding-top: 5px;
    padding: 0 5px;
}

.notification .fa:hover {
    color: #1e6583;
}

#caret {
    position: relative;
    top: -8px;
}

#caret:hover {
    color: #1e6583;
}

.circle {
    background: red;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    font-size: 10px;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 3px;
    left: 10px;
}

.user-img {
    background: url("../../assets/img/user.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 30px;
    height: 30px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

textarea:focus,
input:focus,
input:active {
    background: #a5adbd;
    outline: none;
}


/* Style The Dropdown Button */

.dropbtn {
    background-color: transparent;
    /* color: white; */
    /* padding: 16px; */
    /* font-size: 16px; */
    border: none;
    cursor: pointer;
    /* width: 80px; */
}


/* The container <div> - needed to position the dropdown content */

.dropdown {
    position: relative;
    display: inline-block;
}


/* Dropdown Content (Hidden by Default) */

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    /* min-width: 160px; */
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding-bottom: 10px;
}

.dropdown-content a {
    padding-right: 10px;
    padding-bottom: 10px;
}


/* Links inside the dropdown */

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}


/* Change color of dropdown links on hover */

.dropdown-content a:hover {
    background-color: #f1f1f1
}


/* Show the dropdown menu on hover */

.dropdown:hover .dropdown-content {
    display: block;
}


/* Change the background color of the dropdown button when the dropdown content is shown */

.dropdown:hover .dropbtn {
    background-color: transparent;
}

.dropdown-content a {
    width: 100%;
}


/************************* 
	DASHBOARD_2 CONTENT
**************************/

.user__card {
    border: 2px solid #1e6583;
    margin: 0 auto;
    width: 350px;
    min-height: 500px;
    color: #828282;
}

@media screen and (max-width:420px) {
    .user__card {
        margin: 0 auto;
        max-width: 500px;
        min-height: 500px;
    }
}

.user__card h3 {
    padding: 10px 0;
    text-align: center;
}

.user__card .user-img {
    display: block;
    margin: 0 auto;
    width: 80px;
    height: 80px;
}

.user__card span {
    display: inline-block;
    margin-top: 14px;
    padding: 20px 10px;
    font-size: large;
}

.user__card .profile__house,
.user__card .profile__service_charge {
    margin-left: 30px;
}

.user__card .profile__due-date {
    margin-left: 40px;
    border: 1px solid #1e6583;
    border-radius: .2rem;
    padding: 2px;
}

.user__card .profile__Move-in {
    margin-left: 25px;
    border: 1px solid #1e6583;
    border-radius: .2rem;
    padding: 2px;
}

.user__card .profile__due-date {
    margin-left: 45px;
}

.user__card .profile__service_charge {
    color: #92cf48;
    font-weight: 600;
}

.form__card {
    border: 2px solid #1e6583;
    margin: 0 auto;
    max-width: 500px;
    min-height: 300px;
    color: #828282;
    margin-top: auto;
    /* display: flex; */
}

.form__card form {
    margin: 0 5rem 5rem 5rem;
    display: inline-block;
}

.form__card span {
    /* margin-top: 5rem; */
    display: block;
}

.form__card h3 {
    margin-top: 1rem;
    text-align: center;
}

.form__card p {
    /* margin-top: 5rem; */
    padding: 0 2rem 0 2rem;
    /* font-size: 1.2rem; */
}

.form__card input,
.form__card textarea {
    display: inline-block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #e9e9e9;
    background-clip: padding-box;
    border: 1px solid #1e6583;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form__card input:hover {
    background: #fff;
}

.form__card textarea {
    min-height: 120px;
}

.submit {
    width: 7rem;
    display: block;
    color: #fff;
    margin: 0;
    background-color: #1e6583;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.75);
}


/************************* 
PAYMENT
**************************/

.payment__card {
    border: none;
    margin: 0 auto;
    max-width: 500px;
    min-height: 300px;
    color: #828282;
    margin-top: auto;
    /* display: flex; */
}

.payment__card h3,
.payment__card h5 {
    text-align: center;
}

.payment__card h5 {
    margin-bottom: 20px;
}

.pay {
    width: 7rem;
    display: block;
    color: #fff;
    margin: 15px auto;
    background-color: #1e6583;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.75);
}

.pay:hover {
    width: 7rem;
    display: block;
    color: #1e6583;
    margin: 15px auto;
    background-color: #fff;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.75);
}

.payment__form input {
    text-align: center;
    display: inline-block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #e9e9e9;
    background-clip: padding-box;
    border: 1px solid #1e6583;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.payment__form input:hover {
    background: transparent;
}

.payment__check {
    margin-left: 3rem;
}

.custom-select {
    text-align: center;
    display: inline-block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #e9e9e9;
    background-clip: padding-box;
    border: 1px solid #1e6583;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.payment__option {
    padding: 0;
    margin: 0 10px;
}

.payment__option .active {
    border: 2px solid #1e6583;
}

.payment__option:hover {
    border: 2px solid #1e6583;
}

.payment__option img {
    display: block;
    margin: 0 auto;
    width: 50%;
    height: 50%;
}

#payment__fa {
    color: #1e6583;
    display: inline-block;
    margin: 0 auto 0 2rem;
    font-size: 6rem;
}

#payment__fa:hover {
    color: #1e6583;
}

.payment__form {
    margin-top: auto;
}

.section__radio {
    border: transparent;
    width: 50%;
}

.payment_radio {
    border: #1e6583;
}


/************************* 
SIDEBAR
**************************/

#sideMenu {
    background: #828282;
    width: 280px;
    position: fixed;
    top: 0;
    bottom: 0;
}

.nav__text {
    background: #1e6583;
    color: #fff;
    padding-left: 10px;
    padding-top: 0px;
    padding-bottom: -30px;
}

.nav__text h2 {
    padding-top: -10px;
    line-height: 59px;
    font-weight: 100;
    font-size: 1.8rem
}

.nav__sidebar {
    padding-top: 0px;
    margin-top: -8px;
}

.nav__sidebar a {
    display: block;
    background: #828282;
    color: #b1b1b1;
    text-decoration: none;
    padding: 15px 30px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
    font-size: 1.2rem;
}

.nav__sidebar a.active {
    color: #fff;
    background: #1e6583;
    border-left: 5px solid #fff;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 15px 30px 15px 25px;
}

.nav__sidebar a:hover {
    border-top: 1px solid #fff;
    background: #1e6583;
    border-left: 5px solid;
    padding: 15px 30px 15px 25px;
    color: #fff;
}

.fa {
    color: #b1b1b1;
    font-size: 1rem;
    margin-right: 0.8rem;
    display: inline-block;
    width: 30px;
    position: relative;
    top: 2px;
}

.fa.active,
.fa:hover {
    color: #fff;
}


/************************* 
SIDEBAR__CONTENT
**************************/

.content__area {
    margin-left: 280px;
    padding: 15px 20px 0 20px;
    margin-bottom: 5%;
}

.heading h1 {
    color: purple;
    font-size: 1.8rem;
    font: weight 400;
    margin-bottom: 10px;
}

.heading p {
    color: #828282;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

section.project {
    padding: 60px 50px;
    margin-left: 250px;
}

section.project .container {
    max-width: 1060px;
    margin: 0 auto;
}

.cards {
    /* overflow: auto; */
    margin-bottom: 30px;
}

.cards__card {
    display: inline-block;
    background: #fff;
    border-radius: 5px;
    padding: 10px 15px;
    overflow: auto;
    width: 100%;
    min-height: 320px;
    border: 1px solid rgb(216, 216, 216);
}

.cards__card .user-img {
    background: url("../../assets/img/user.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 85px;
    height: 85px;
    display: block;
    border-radius: 50%;
    margin: 10px auto;
}

.logo {
    display: inline-block;
    background: #92cf48;
    padding: 15px;
    border-radius: 50%;
    margin-right: 20px;
    color: #fff;
    widows: 45px;
    height: 45px;
}

.user-name {
    font-size: 1rem;
    color: purple;
    display: block;
    text-align: center;
    margin: 10px 0;
}

.user-title {
    font-size: 0.8rem;
    display: block;
    text-align: center;
    margin: 10px 0;
}

.education {
    font-size: 0.8rem;
    display: block;
    color: #6c7882;
    margin: 0 auto;
    text-align: center;
}

.schools {
    display: block;
    font-size: 0.8rem;
    text-align: center;
}

h6 {
    font-size: 0.8rem;
    padding-left: 20px;
}

.date {
    font-size: 1.3rem;
    position: relative;
    left: -15px;
    display: block;
    border-left: 5px solid #92cf48;
    padding: 0 15px;
    margin: 40px 0;
}

.job__type {
    background: orange;
    width: 20px;
    height: 20px;
    font-size: 0.6rem;
    color: white;
    padding: 5px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
}

.job__type__2 {
    background: steelblue;
    width: 20px;
    height: 20px;
    font-size: 0.5rem;
    color: white;
    padding: 5px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
}

.location {
    display: block;
    font-size: 0.8rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.position {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.time {
    display: block;
    font-size: 0.8rem;
    font-weight: 300;
    color: #6c7882;
    margin-bottom: 0.5rem;
}

.col-xs-2 {
    display: inline-block;
    padding-left: 0;
}

table {
    width: 100%;
}

thead {
    background: #eaedf3;
    -webkit-box-top-left-radius: 5px;
    -webkit-box-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

th {
    background: #1e6583;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
    padding: 20px 10px;
}

tbody {
    background: #fff;
    font-size: 1rem;
}

td {
    color: #828282;
    padding: 20px 10px;
}

td .fa {
    width: 5px;
}

.btn-resize {
    display: inline-block;
    font-weight: 100;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    /* padding: .375rem .75rem; */
    font-size: 0.9rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}


/************************
FOOTER
************************/

.footer {
    /* margin-left: 80px; */
    /* position: fixed; */
    background-color: #1e6583;
    color: #fff;
    font-size: .8rem;
    padding: 5px 0;
}

.dashboard__footer__list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.dashboard__footer__list li {
    display: inline-block;
    padding-left: 20px;
}

.dashboard__footer__left {
    float: left;
    padding-top: 10px;
}


/**********************
MEDIA_QUERIES
************************/

@media screen and (max-width:800px) {
    .content__area {
        margin-left: 180px;
        padding: 15px;
    }
    .nav__header {
        width: 100%;
        margin-left: 180px;
        padding: 10px;
        background: #1e6583;
    }
    #sideMenu {
        background: #828282;
        width: 180px;
        position: absolute;
        top: 0;
        bottom: 0;
    }
    .nav__text span h2 {
        visibility: hidden;
    }
    .nav__text span h2:after {
        color: #fff;
        content: 'SUMMERLAND';
        visibility: visible;
        display: inline-block;
        position: absolute;
        top: 0;
        margin-top: 0px;
        font-size: 1.25rem;
        z-index: 100;
    }
    .nav__text {
        background: #1e6583;
        margin-bottom: -1px;
    }
    .nav__text h2 {
        padding-top: -50px;
        line-height: 68px;
    }
    section.project {
        padding: 60px 0;
        margin-left: 80px;
    }
    .nav__userfield {
        /* position: absolute;
        right: 0; */
        display: inline-block;
        float: right;
        padding: 0;
        /* margin-top: -45px; */
        margin-left: 60px;
    }
    .nav__userfield a {
        display: inline-block;
        /* margin-right: 10px; */
        text-decoration: none;
        vertical-align: top;
        /* width: 50%; */
        height: 30px;
    }
    .nav__searchbar {
        display: inline-block;
        width: 50%;
    }
    .nav__userfield .fa {
        width: 30px;
        margin: 0 10px;
    }
    .circle {
        background: red;
        display: inline-block;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        font-size: 10px;
        color: #fff;
        text-align: center;
        position: absolute;
        top: 3px;
        left: 22px;
    }
    .nav__sidebar {
        padding-top: 0px;
    }
    section.project {
        padding: 60px 0;
        margin-left: 180px;
    }
    table {
        width: 100%;
    }
}

@media screen and (max-width:420px) {
    body {
        height: 100vh;
        width: 100%;
        position: absolute;
    }
    #sideMenu {
        background: #828282;
        width: 80px;
        position: absolute;
        top: 0;
        bottom: 0;
    }
    .nav__text span h2 {
        visibility: hidden;
    }
    .nav__text span h2:after {
        color: #fff;
        content: 'SL';
        visibility: visible;
        display: inline-block;
        position: absolute;
        top: 0;
        margin-top: -5px;
        padding-left: 0.75rem;
        font-size: 1.7rem;
        background: #1e6583;
    }
    .nav__text {
        background: #1e6583;
        margin-bottom: -10px;
    }
    .nav__text h2 {
        padding-top: -10px;
        line-height: 59px;
    }
    .content__area {
        width: 100%;
        margin-left: 80px;
        padding: 15px;
        margin-bottom: 50px;
        /* z-index: 5; */
    }
    .nav__header {
        width: 100%;
        margin-left: 80px;
        padding: 10px;
        background: #1e6583;
    }
    .dropbtn {
        background-color: transparent;
        /* color: white; */
        /* padding: 16px; */
        /* font-size: 16px; */
        border: none;
        cursor: pointer;
        width: 80px;
    }
    section.project {
        padding: 60px 0;
        margin-left: 80px;
        width: 100%;
    }
    section.project .container {
        min-width: 100%;
        margin: 0 auto;
    }
    .heading h1 {
        color: purple;
        font-size: 1.4rem;
        font: weight 400;
        margin-bottom: 10px;
        margin-left: 20px;
        text-align: center;
    }
    .heading p {
        color: #b1b1b1;
        font-size: 0.8rem;
        margin-bottom: 10px;
        margin-left: 20px;
        text-align: center;
    }
    .nav__userfield {
        /* position: absolute;
        right: 0; */
        display: inline-block;
        float: right;
        padding: 0;
        margin-top: -38px;
        margin-left: 35px;
    }
    .nav__userfield a {
        display: inline-block;
        padding-right: 0;
        text-decoration: none;
        vertical-align: top;
        /* width: 50%; */
        height: 30px;
    }
    .nav__searchbar {
        display: inline-block;
        width: 55%;
        padding-left: 10px;
    }
    .nav__sidebar {
        padding-top: 0px;
    }
    .add {
        font-size: 16px;
        font-weight: 500;
        padding-top: 7px;
    }
    .user-img {
        background: url("../../assets/img/user.jpg") no-repeat center center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        width: 30px;
        height: 30px;
        display: inline-block;
        border-radius: 50%;
        margin-right: 0;
    }
    .span__searchbar {
        display: none;
    }
    .nav__userfield .fa {
        width: 10px;
        margin: 0 10px;
    }
    .nav__sidebar a span:nth-child(2) {
        display: none;
    }
    input[type='text'] {
        font-size: 0.75rem;
    }
    .circle {
        background: red;
        display: inline-block;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        font-size: 10px;
        color: #fff;
        text-align: center;
        position: absolute;
        top: 3px;
        left: 20px;
    }
    .cards {
        width: calc(100%);
        margin-top: 20px;
    }
    .cards__card {
        display: inline-block;
        background: #fff;
        border-radius: 5px;
        padding: 10px 15px;
        overflow: auto;
        min-height: 320px;
        border: 1px solid rgb(216, 216, 216);
    }
    table {
        width: 100%;
    }
    .dropdown-content a {
        width: 100%;
    }
}